UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

76 lines (75 loc) 2.33 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgMailRepliedSymbolic = (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", { color: "#000", fontWeight: 400, fill: "#474747" }, /* @__PURE__ */ React.createElement("path", { d: "M8 5H7c-.265 0-.53.093-.719.281l-3 3L3 8.562v.875l.281.282 3 3c.188.188.454.281.72.281h1v-1c0-.265-.094-.53-.282-.719L5.438 9l2.28-2.281c.189-.188.282-.454.282-.72V5z", style: { lineHeight: "normal", InkscapeFontSpecification: "'Bitstream Vera Sans'", textIndent: 0, textAlign: "start", textDecorationLine: "none", textTransform: "none", marker: "none" }, fontFamily: "Bitstream Vera Sans", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M12 4v2.5c0 .84-.66 1.5-1.5 1.5H5v2h5.5c1.921 0 3.5-1.579 3.5-3.5V4z", 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", marker: "none" }, fontFamily: "sans-serif", overflow: "visible" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgMailRepliedSymbolic); var mail_replied_symbolic_default = Memo; export { mail_replied_symbolic_default as default };