UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

85 lines (84 loc) 2.7 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgFormatTextUnderlineSymbolic = (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, fontFamily: "sans-serif", fill: "#474747" }, /* @__PURE__ */ React.createElement("path", { d: "M4 2v2h6c.428 0 1 .614 1 1v1H6c-.92 0-1.736.38-2.25.965a3.037 3.037 0 00-.737 2.045c.006.72.246 1.449.758 2.027.513.579 1.32.963 2.229.963h7V5a3 3 0 00-3-3zm2 6h5v2H6c-.398 0-.579-.116-.73-.287a1.138 1.138 0 01-.257-.723c-.002-.28.093-.54.239-.705C5.397 8.12 5.577 8 6 8z", 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" }, overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M2 13v2h12v-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" }, overflow: "visible" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgFormatTextUnderlineSymbolic); var format_text_underline_symbolic_default = Memo; export { format_text_underline_symbolic_default as default };