UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

105 lines (104 loc) 3.34 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgApplicationRssXmlSymbolic = (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: "#474747" }, /* @__PURE__ */ React.createElement("path", { d: "M6 12a2 2 0 01-2 2 2 2 0 01-2-2 2 2 0 012-2 2 2 0 012 2z", style: { marker: "none" }, color: "#000", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M2 6h1.014v1.014H2zm7.014 7.014H10V14h-.986zm4 0H14V14h-.986zM2 2h1.014v1.014H2z" }), /* @__PURE__ */ React.createElement("path", { d: "M3.014 8.014c2.774 0 5 2.227 5 5h2c0-3.854-3.145-7-7-7z", 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" }, color: "#000", fontWeight: 400, fontFamily: "sans-serif", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M3.014 4.028a8.972 8.972 0 018.987 8.986h2C14 6.96 9.07 2.028 3.014 2.028z", 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" }, color: "#000", fontWeight: 400, fontFamily: "sans-serif", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M4 7a1 1 0 01-1 1 1 1 0 01-1-1 1 1 0 011-1 1 1 0 011 1zm0-4a1 1 0 01-1 1 1 1 0 01-1-1 1 1 0 011-1 1 1 0 011 1zm6 10a1 1 0 01-1 1 1 1 0 01-1-1 1 1 0 011-1 1 1 0 011 1zm4 0a1 1 0 01-1 1 1 1 0 01-1-1 1 1 0 011-1 1 1 0 011 1z", style: { marker: "none" }, color: "#000", overflow: "visible" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgApplicationRssXmlSymbolic); var application_rss_xml_symbolic_default = Memo; export { application_rss_xml_symbolic_default as default };