UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

77 lines (76 loc) 2.46 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgObjectFlipHorizontalSymbolic = (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", { fontWeight: 400, fill: "#474747" }, /* @__PURE__ */ React.createElement("path", { d: "M3 7v2h10V7z", 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" }, color: "#000", fontFamily: "sans-serif", overflow: "visible" }), /* @__PURE__ */ React.createElement("path", { d: "M10 4v1c0 .257.13.528.313.719L12.593 8l-2.28 2.281c-.183.19-.313.462-.313.719v1h1c.31 0 .552-.09.75-.281L15.406 8 11.75 4.281C11.552 4.091 11.31 4 11 4zM6 4v1c0 .257-.13.528-.312.719L3.406 8l2.282 2.281c.182.19.312.462.312.719v1H5c-.31 0-.552-.09-.75-.281L.594 8 4.25 4.281C4.448 4.091 4.69 4 5 4z", style: { lineHeight: "normal", InkscapeFontSpecification: "'Bitstream Vera Sans'", textIndent: 0, textAlign: "start", textDecorationLine: "none", textTransform: "none", marker: "none" }, color: "#bebebe", fontFamily: "Bitstream Vera Sans", overflow: "visible" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgObjectFlipHorizontalSymbolic); var object_flip_horizontal_symbolic_default = Memo; export { object_flip_horizontal_symbolic_default as default };