adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
55 lines (54 loc) • 1.95 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgAuthSimLockedSymbolic = (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: "M13 8.875c-1.09 0-2 .879-2 1.969v1.094h-.97V16H16v-4.063h-1.032v-1.093c0-1.09-.88-1.969-1.968-1.969zm0 1c.546 0 .968.417.968.969v1.094H12v-1.094c0-.552.453-.969 1-.969z",
style: {
lineHeight: "normal",
InkscapeFontSpecification: "Sans",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
},
color: "#000",
fontWeight: 400,
fontFamily: "Sans",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M4 0C2 0 2 2 2 2v12c0 2 2 2 2 2h5.031v-4.998H3.998v-2h6.672A3.008 3.008 0 0113 7.875c.352 0 .686.073 1 .188V3l-3-3zm1 6l.998.006v2h-2L4 7s0-1 1-1zm6 0c1 0 1 1 1 1l-.002 1.002h-2v-2zm-4.002.006h2v2h-2zm-3 5.996h2v2L5 14c-1 0-1-1-1-1zm3 0h2v2h-2zm5.002.935V13c0 .95-.878.994-.969.996V15h2.729c.14-.262.24-.579.24-1v-1.063h-.031z",
opacity: 0.35
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgAuthSimLockedSymbolic);
var auth_sim_locked_symbolic_default = Memo;
export {
auth_sim_locked_symbolic_default as default
};