UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

39 lines (38 loc) 1.51 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgFaceWorriedSymbolic = (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("path", { d: "M8 1a7 7 0 100 14A7 7 0 008 1zM6 5c.558 0 1.031.473 1.031 1.031V7c0 .558-.473 1-1.031 1-.558 0-1-.442-1-1v-.969C5 5.473 5.442 5 6 5zm4 0c.558 0 1 .473 1 1.031V7c0 .558-.442 1-1 1s-1-.442-1-1v-.969C9 5.473 9.442 5 10 5zm3 5.943c-.766-.428-1.612-.92-2.476-.94-.652.02-1.239.654-1.524.697-.542.314-1.56.196-2 0-.917-.437-.921-.68-1.543-.7-.853.019-1.832.404-2.457.943v-.5c.422-1.086 2.38-2.045 4-.871.35.22.427.267 1.015.337.16.055.592-.034.985-.337 1.582-1.153 3.292-.119 4 .87z", overflow: "visible", fill: "#474747" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgFaceWorriedSymbolic); var face_worried_symbolic_default = Memo; export { face_worried_symbolic_default as default };