UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

38 lines (37 loc) 1.5 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgFaceCryingSymbolic = (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.41 1.031.875v.781c0 .466-.473.844-1.031.844-.558 0-1-.378-1-.844v-.781C5 5.41 5.442 5 6 5zm4 0c.558 0 1 .378 1 .844v.812c0 .466-.442.844-1 .844s-1-.378-1-.844v-.812C9 5.378 9.442 5 10 5zm1.75 2.281c1.208.449 2.046.937 2.219 1.563a.993.993 0 01-.938 1.25c-.519.007-.768-.216-.937-.875-.167-.66.083-1.293-.344-1.938zM7.969 9.97c2.588 0 3.969.98 3.969 1.562v.531c-.793-.696-3.187-1-3.97-1-.781 0-3.018-.058-3.968 1v-.53c0-.745 1.38-1.563 3.969-1.563z", fill: "#474747" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgFaceCryingSymbolic); var face_crying_symbolic_default = Memo; export { face_crying_symbolic_default as default };