UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

65 lines (64 loc) 2.25 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgEditClearSymbolicRtl = (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.006 16", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M10.006 2a1 1 0 01.707.293l5 5a1 1 0 010 1.414l-5 5a1 1 0 01-.707.293h-8.5s-.334.014-.697-.168C.445 13.65.006 13.083.006 12.5v-9c0-.583.44-1.15.803-1.332.363-.182.697-.168.697-.168zM9 5H7.969a1.04 1.04 0 00-.688.313L6 6.593l-1.312-1.28C4.422 5.082 4.24 5.006 4 5H3v1c0 .286.034.55.25.75l1.281 1.281-1.25 1.25A1.015 1.015 0 003 10v1h1c.265 0 .53-.093.719-.281L6 9.438l1.281 1.28c.188.189.454.282.719.282h1v-1c0-.265-.093-.53-.281-.719l-1.282-1.25L8.72 6.75A.909.909 0 009 6z", 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", whiteSpace: "normal", shapePadding: 0, isolation: "auto", mixBlendMode: "normal", solidColor: "#000", solidOpacity: 1 }, color: "#000", fontWeight: 400, fontFamily: "sans-serif", overflow: "visible", fill: "#2e3436", fillRule: "evenodd" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgEditClearSymbolicRtl); var edit_clear_symbolic_rtl_default = Memo; export { edit_clear_symbolic_rtl_default as default };