UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

62 lines (61 loc) 2.26 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgPreferencesDesktopFontSymbolic = (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: "M3 5.012v2h1.92c-.055 0 .084.159.084.082v.924H4c-1.716 0-3.03 1.125-3.055 2.484-.012.68.306 1.363.862 1.822.555.46 1.315.7 2.193.7h3.004v-5.93c0-1.171-.887-2.082-2.084-2.082zm1 5.006h1.004v1.005H4c-.52 0-.794-.137-.92-.242-.126-.104-.136-.172-.135-.244.003-.144.085-.52 1.055-.52zM7.996 4v9.023H11c.939 0 1.769-.372 2.299-.959.53-.586.766-1.336.756-2.066a3.079 3.079 0 00-.791-2.043C12.737 7.378 11.92 7 11 7H9.996V4zm2 5H11c.422 0 .626.126.787.303.162.177.264.447.268.722.004.276-.089.53-.24.698-.152.167-.356.3-.815.3H9.996z", 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", color: "#000", fontWeight: 400, fontFamily: "sans-serif", fill: "#474747" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgPreferencesDesktopFontSymbolic); var preferences_desktop_font_symbolic_default = Memo; export { preferences_desktop_font_symbolic_default as default };