adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
68 lines (67 loc) • 2.82 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgAuthSimMissingSymbolic = (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", {
fill: "#2e3436"
}, /* @__PURE__ */ React.createElement("path", {
d: "M4 0C2 0 2 2 2 2v12c0 2 2 2 2 2h8s2 0 2-2V3l-3-3zm3.755 3.002c.02-.001.037.009.057.008 2.16-.09 4.063 1.565 4.186 3.746l.002.03v.027c0 .045-.005.086-.006.13 0 .015.006.057.006.057l-.002 1.002h-.123a3.248 3.248 0 01-.354.918c-.017.03-.039.054-.057.082h.534V11H12v2c0 1-1 1-1 1l-1.002-.002v-.984A2.014 2.014 0 018 15c-1.093 0-2-.907-2-2 0-.382.134-.712.336-1H6v-.998H3.998v-2H6V8h-.002v.006h-2L4 7l.01-.094c-.034-2.109 1.67-3.788 3.746-3.904zM11.998 11H10v.002h1.998zM8.666 5.13c.718.266 1.271.933 1.324 1.735 0-.007.002-.007.002-.013-.054-.799-.6-1.46-1.326-1.721zM9.664 12c.199.285.331.613.334.99V12zm-5.666.002h2v2L5 14c-1 0-1-1-1-1z",
opacity: 0.35
}), /* @__PURE__ */ React.createElement("path", {
d: "M8.152 4.006a2.992 2.992 0 00-1.3.223A3.005 3.005 0 005 7h2c0-.407.24-.768.617-.924a.994.994 0 011.09.217.994.994 0 01.216 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.97-.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
},
color: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgAuthSimMissingSymbolic);
var auth_sim_missing_symbolic_default = Memo;
export {
auth_sim_missing_symbolic_default as default
};