UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

58 lines (57 loc) 1.73 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgFormatIndentMoreSymbolic = (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: "#bebebe", fill: "#474747" }, /* @__PURE__ */ React.createElement("path", { d: "M8 3h5v2H8zm0 4h6v2H8zm-6 4h7v2H2z", style: { marker: "none" }, overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M2 3v1c0 .257.13.528.312.719L3.594 6 2.312 7.281C2.13 7.471 2 7.743 2 8v1h1c.31 0 .552-.09.75-.281L6.406 6 3.75 3.281C3.552 3.091 3.31 3 3 3z", style: { lineHeight: "normal", InkscapeFontSpecification: "'Bitstream Vera Sans'", textIndent: 0, textAlign: "start", textDecorationLine: "none", textTransform: "none", marker: "none" }, fontWeight: 400, fontFamily: "Bitstream Vera Sans", overflow: "visible" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgFormatIndentMoreSymbolic); var format_indent_more_symbolic_default = Memo; export { format_indent_more_symbolic_default as default };