UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

43 lines (42 loc) 1.49 kB
import * as React from "react"; import { memo } from "react"; import cx from "clsx"; const SvgViewSortAscendingSymbolic = (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: "M1.384 3h1.231A.38.38 0 013 3.379V4.62a.38.38 0 01-.385.38h-1.23A.38.38 0 011 4.621V3.38A.38.38 0 011.384 3zm0 4.016h1.231A.38.38 0 013 7.394v1.243a.38.38 0 01-.385.379h-1.23A.38.38 0 011 8.636V7.395a.38.38 0 01.384-.378zm0 3.984h1.231a.38.38 0 01.385.379v1.242a.38.38 0 01-.385.379h-1.23A.38.38 0 011 12.621V11.38a.38.38 0 01.384-.38zM7 3v4H3.937l5.125 5.781L14.187 7H11V3z", style: { marker: "none" }, overflow: "visible", color: "#000", fill: "#474747" }))); return render(rest, ...restArgs); }; const Memo = memo(SvgViewSortAscendingSymbolic); var view_sort_ascending_symbolic_default = Memo; export { view_sort_ascending_symbolic_default as default };