UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

38 lines (37 loc) 1.27 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgFaceYawnSymbolic = (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 1zM5.531 4C6.266 4 7 4.446 7 5.313c-1.5-.339-3.125 1.732-3 0C4.063 4.446 4.797 4 5.531 4zm4.938 0c.734 0 1.469.446 1.531 1.313.125 1.732-1.5-.339-3 0C9 4.446 9.734 4 10.469 4zM8 7c1.38 0 2.5 1.343 2.5 3S9.38 13 8 13s-2.5-1.343-2.5-3S6.62 7 8 7z", fill: "#474747" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgFaceYawnSymbolic); var face_yawn_symbolic_default = Memo; export { face_yawn_symbolic_default as default };