UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

44 lines (43 loc) 1.45 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgEditCutSymbolic = (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: "M4.5 2.007a2.5 2.5 0 000 5c.446 0 .856-.14 1.218-.344l1.97 1.844-1.97 1.843a2.473 2.473 0 00-1.218-.343 2.5 2.5 0 102.5 2.5c0-.23-.036-.446-.094-.657L9.03 9.788l4.469 4.219H15v-1L6.906 5.163A2.46 2.46 0 007 4.507a2.5 2.5 0 00-2.5-2.5zm0 1.5a1 1 0 110 2 1 1 0 010-2zm9-.5L9.562 6.725l1.313 1.282 4.125-4v-1zm-9 8.5a1 1 0 110 2 1 1 0 010-2z", style: { isolation: "auto", mixBlendMode: "normal" }, color: "#000", overflow: "visible", fill: "#474747" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgEditCutSymbolic); var edit_cut_symbolic_default = Memo; export { edit_cut_symbolic_default as default };