UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

50 lines (49 loc) 1.63 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgSystemUsersSymbolic = (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", { color: "#bebebe", fill: "#2e3436" }, /* @__PURE__ */ React.createElement("path", { d: "M11 4a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-1 5c-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" }, overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M5 2a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zM4 7c-1.662 0-3 1.338-3 3v1c0 .554.446 1 1 1h4c0-1.665 1.056-3.038 2.517-3.625A2.986 2.986 0 006 7zm5 3.268c-.6.34-1 .976-1 1.732.554 0 1-.446 1-1v-.25z", style: { marker: "none" }, overflow: "visible" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgSystemUsersSymbolic); var system_users_symbolic_default = Memo; export { system_users_symbolic_default as default };