UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

91 lines (90 loc) 3.03 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgEmojiObjectsSymbolic = (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("g", { fill: "#2e3436" }, /* @__PURE__ */ React.createElement("path", { d: "M7.995 0a6.01 6.01 0 00-5.87 4.777c-.529 2.534.689 5.036 2.872 6.327l.002.898A1 1 0 006 13h4a1 1 0 001-.998l.002-.9c2.183-1.293 3.4-3.797 2.87-6.33A6.009 6.009 0 007.996 0zm0 2c1.9 0 3.53 1.322 3.918 3.182a3.99 3.99 0 01-2.312 4.484 1 1 0 00-.6.914V11H6.997v-.418a1 1 0 00-.6-.914 3.993 3.993 0 01-2.316-4.484A3.99 3.99 0 017.995 2z", style: { lineHeight: "normal", fontVariantLigatures: "normal", fontVariantPosition: "normal", fontVariantCaps: "normal", fontVariantNumeric: "normal", fontVariantAlternates: "normal", fontFeatureSettings: "normal", textIndent: 0, textAlign: "start", textDecorationLine: "none", textDecorationStyle: "solid", textDecorationColor: "#000", textTransform: "none", textOrientation: "mixed", shapePadding: 0, isolation: "auto", mixBlendMode: "normal" }, color: "#000", fontWeight: 400, fontFamily: "sans-serif", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M6 15c0 .554.446 1 1 1h2c.554 0 1-.446 1-1v-1H6z" }), /* @__PURE__ */ React.createElement("path", { d: "M6.992 5.994a.5.5 0 00-.348.86l1 1a.5.5 0 00.707 0l1-1a.5.5 0 10-.707-.708l-.647.647-.646-.647a.5.5 0 00-.36-.152z", style: { lineHeight: "normal", fontVariantLigatures: "normal", fontVariantPosition: "normal", fontVariantCaps: "normal", fontVariantNumeric: "normal", fontVariantAlternates: "normal", fontFeatureSettings: "normal", textIndent: 0, textAlign: "start", textDecorationLine: "none", textDecorationStyle: "solid", textDecorationColor: "#000", textTransform: "none", textOrientation: "mixed", shapePadding: 0, isolation: "auto", mixBlendMode: "normal" }, color: "#000", fontWeight: 400, fontFamily: "sans-serif", overflow: "visible", opacity: 0.35, fillRule: "evenodd" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgEmojiObjectsSymbolic); var emoji_objects_symbolic_default = Memo; export { emoji_objects_symbolic_default as default };