adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
70 lines (69 loc) • 2.3 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgSystemSwitchUserSymbolic = (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.003 16",
...props
}, /* @__PURE__ */ React.createElement("g", {
fill: "#2e3436"
}, /* @__PURE__ */ React.createElement("path", {
d: "M11 1a2 2 0 100 4 2 2 0 000-4zM5 4a2 2 0 100 4 2 2 0 000-4zm5 2c-1.31 0-2.407.835-2.819 2h7.637A2.985 2.985 0 0012 6h-1zM4 9c-1.662 0-3 1.338-3 3v1c0 .554.446 1 1 1h6c.554 0 1-.446 1-1v-1c0-1.662-1.338-3-3-3z",
style: {
marker: "none"
},
color: "#bebebe",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M15.16 15H16v-1c.008-1.673 0-5 0-5h-6v.846A1 1 0 0011 11h1.586l-1.643 1.643-.65.65c-.654.636-.185 1.744.726 1.717.26-.008.507-.117.688-.303l.628-.628L14 12.414V14c0 .681.449 1 1.16 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",
shapePadding: 0,
isolation: "auto",
mixBlendMode: "normal",
marker: "none"
},
color: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible"
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgSystemSwitchUserSymbolic);
var system_switch_user_symbolic_default = Memo;
export {
system_switch_user_symbolic_default as default
};