UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

42 lines (41 loc) 1.54 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgUserStatusPendingSymbolic = (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: "#474747" }, /* @__PURE__ */ React.createElement("path", { d: "M3.5 1A2.495 2.495 0 001 3.5V4h14v-.5C15 2.115 13.885 1 12.5 1zM1.062 9A2.486 2.486 0 003.5 11h6.375L13 15v-4.063A2.488 2.488 0 0014.938 9z", opacity: 0.5 }), /* @__PURE__ */ React.createElement("path", { d: "M5 6.5A1.5 1.5 0 013.5 8 1.5 1.5 0 012 6.5 1.5 1.5 0 013.5 5 1.5 1.5 0 015 6.5zm4 0A1.5 1.5 0 017.5 8 1.5 1.5 0 016 6.5 1.5 1.5 0 017.5 5 1.5 1.5 0 019 6.5zm4 0A1.5 1.5 0 0111.5 8 1.5 1.5 0 0110 6.5 1.5 1.5 0 0111.5 5 1.5 1.5 0 0113 6.5z" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgUserStatusPendingSymbolic); var user_status_pending_symbolic_default = Memo; export { user_status_pending_symbolic_default as default };