UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

38 lines (37 loc) 1.38 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgFaceSmirkSymbolic = (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.015 1a7 7 0 100 14 7 7 0 000-14zm-2 4c.559 0 1.032.473 1.032 1.031V7c0 .558-.473 1-1.032 1-.558 0-1-.442-1-1v-.97c0-.558.442-1.031 1-1.031zm4 0c.559 0 1 .473 1 1.031V7c0 .558-.441 1-1 1-.558 0-1-.442-1-1v-.97c0-.558.442-1.031 1-1.031zM3.603 7.719c.78 3.306 4.693 4.432 7.705 3.287.007.598-.195 1.097-1.154 1.286-2.166.426-5.161-.143-6.68-2.594-.666-1.074-.127-1.685.129-1.98z", fill: "#474747" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgFaceSmirkSymbolic); var face_smirk_symbolic_default = Memo; export { face_smirk_symbolic_default as default };