UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

51 lines (50 loc) 1.74 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgEditDeleteSymbolic = (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("path", { d: "M8 1.031A6.963 6.963 0 001.031 8 6.963 6.963 0 008 14.969 6.963 6.963 0 0014.969 8 6.963 6.963 0 008 1.031zM5 5h1.031c.255.011.51.129.688.313L8 6.593l1.312-1.28c.266-.231.447-.306.688-.313h1v1c0 .286-.034.55-.25.75L9.469 8.031l1.25 1.25c.188.188.281.454.281.719v1h-1c-.265 0-.53-.093-.719-.281L8 9.438l-1.281 1.28A1.015 1.015 0 016 11H5v-1c0-.265.093-.53.281-.719l1.281-1.25-1.28-1.281A.909.909 0 015 6z", style: { lineHeight: "normal", InkscapeFontSpecification: "'Andale Mono'", textIndent: 0, textAlign: "start", textDecorationLine: "none", textTransform: "none", marker: "none" }, color: "#bebebe", fontWeight: 400, fontFamily: "Andale Mono", overflow: "visible", fill: "#474747" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgEditDeleteSymbolic); var edit_delete_symbolic_default = Memo; export { edit_delete_symbolic_default as default };