UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

38 lines (37 loc) 1.3 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgFaceCoolSymbolic = (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 1zM2.22 5.031c3.913-.037 7.972 0 11.562 0 0 1.642-1.25 2.969-2.78 2.969-1.276 0-2.333-.93-2.657-2.188h-.688C7.333 7.07 6.276 8 5 8 3.47 8 2.22 6.673 2.22 5.031zM3 9.063C3.716 10.136 5.235 11 8 11c2.452 0 4.211-.75 5-1.938v.5c0 .681-.838 2.407-5 2.407-3.88 0-5-1.874-5-2.406z", fill: "#474747" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgFaceCoolSymbolic); var face_cool_symbolic_default = Memo; export { face_cool_symbolic_default as default };