UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

96 lines (95 loc) 3.06 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgDocumentOpenSymbolic = (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: "M.985 2.986A1 1 0 000 4v9s-.014.459.23.947C.476 14.436 1.168 15 2 15h1.832a1 1 0 00.326 0H14s.459.014.947-.23C15.436 14.525 16 13.833 16 13v-3a1 1 0 00-1-1H4a1 1 0 00-1 1v3H2V4A1 1 0 00.985 2.986zM5 11h9v2H5z", 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" }, color: "#000", fontWeight: 400, fontFamily: "sans-serif", overflow: "visible", fillRule: "evenodd" }), /* @__PURE__ */ React.createElement("path", { d: "M4 11h11v3H4zm11-1h1v1h-1zM3 9h1v1H3zM1 3h2v5H1z" }), /* @__PURE__ */ React.createElement("path", { d: "M5 0a1 1 0 00-1 1v7h2V2h4.086L13 4.914V8h2V4.5a1 1 0 00-.293-.707l-3.5-3.5A1 1 0 0010.5 0z", 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" }, color: "#000", fontWeight: 400, fontFamily: "sans-serif", overflow: "visible", fillRule: "evenodd" }), /* @__PURE__ */ React.createElement("path", { d: "M10 1v4h4z", fillRule: "evenodd" }), /* @__PURE__ */ React.createElement("path", { d: "M15 9h1v1h-1z" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgDocumentOpenSymbolic); var document_open_symbolic_default = Memo; export { document_open_symbolic_default as default };