UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

48 lines (47 loc) 1.62 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgTaskPastDueSymbolic = (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", { fill: "#474747" }, /* @__PURE__ */ React.createElement("path", { d: "M2.469 1s-1.5 0-1.5 1.5v11.969s0 1.53 1.5 1.53h7.5v-2h-7V3h1V1zm8.5 0v2h1v7h2V2.5c0-1.5-1.5-1.5-1.5-1.5z" }), /* @__PURE__ */ React.createElement("path", { d: "M5.5 0h3.969c.277 0 .5.223.5.5v3c0 .277-.223.5-.5.5H5.5a.499.499 0 01-.5-.5v-3c0-.277.223-.5.5-.5z" }), /* @__PURE__ */ React.createElement("path", { d: "M10.969 11h1.375l1.125 1.094L14.563 11h1.406v1.469l-1.094 1.062 1.094 1.063V16H14.53l-1.062-1.063L12.406 16H10.97v-1.406l1.062-1.063-1.062-1.062z", style: { marker: "none" }, color: "#bebebe", overflow: "visible" })))); return render(rest, ...restArgs); }; const Memo = memo(SvgTaskPastDueSymbolic); var task_past_due_symbolic_default = Memo; export { task_past_due_symbolic_default as default };