UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

38 lines (37 loc) 1.32 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgFaceLaughSymbolic = (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 4.719C6.266 4.719 7 5.165 7 6.03c-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.312zM3 9.03c2 1.304 7.987 1.304 10.031 0l-.03.531c-.037.43-1 3.376-5 3.407-4 .031-5-2.78-5-3.313V9.03z", fill: "#474747" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgFaceLaughSymbolic); var face_laugh_symbolic_default = Memo; export { face_laugh_symbolic_default as default };