UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

94 lines (93 loc) 2.89 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgXOfficePresentationSymbolic = (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", fill: "#474747" }, /* @__PURE__ */ React.createElement("path", { d: "M2 3v8h12V3zm6 1a2 2 0 012 2H8zM7 5v2h2a2 2 0 11-2-2z", style: { marker: "none" }, overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M2.095 2a1 1 0 100 2h11.63a1 1 0 100-2zm5.398 8.493a.5.5 0 00-.492.507v1.752l-1.805 1.381a.5.5 0 10.608.795L8 13.247V11a.5.5 0 00-.508-.507z", 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" }, fontWeight: 400, fontFamily: "sans-serif", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M7.483 12.497a.5.5 0 00-.29.896l2 1.563a.5.5 0 10.614-.788l-2-1.562a.5.5 0 00-.324-.11z", 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" }, fontWeight: 400, fontFamily: "sans-serif", overflow: "visible" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgXOfficePresentationSymbolic); var x_office_presentation_symbolic_default = Memo; export { x_office_presentation_symbolic_default as default };