UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

38 lines (37 loc) 1.44 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgFaceEmbarrassedSymbolic = (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 6.177C6.266 6.177 7 6.623 7 7.489c-1.5-.338-3.125 1.733-3 0 .063-.866.797-1.312 1.531-1.312zm4.938 0c.734 0 1.469.446 1.531 1.312.125 1.733-1.5-.338-3 0 0-.866.734-1.312 1.469-1.312zm-6 2.558a.75.75 0 110 1.5.75.75 0 110-1.5zm7.017 0a.75.75 0 110 1.5.75.75 0 110-1.5zm-4.09 2.262h1.172c.206 0 .547.223.547.5s-.34.516-.547.516H7.396c-.206 0-.484-.239-.484-.516s.278-.5.484-.5z", fill: "#474747" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgFaceEmbarrassedSymbolic); var face_embarrassed_symbolic_default = Memo; export { face_embarrassed_symbolic_default as default };