@spark-ui/icons
Version:
spark-ui icons
20 lines (19 loc) • 923 B
JavaScript
import "react";
import { jsx } from "react/jsx-runtime";
//#region src/icons/ArrowHorizontalUp.tsx
var ArrowHorizontalUp = ({ title, fill = "currentColor", stroke = "none", ref, ...props } = {}) => /* @__PURE__ */ jsx("svg", {
ref,
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg",
"data-title": "ArrowHorizontalUp",
...title && { "data-title": title },
fill,
stroke,
...props,
dangerouslySetInnerHTML: { __html: (title === void 0 ? "" : `<title>${title}</title>`) + "<path fill-rule=\"evenodd\" d=\"m12,9.19l-8.1,7.51c-.43.4-1.14.4-1.57,0-.43-.4-.43-1.05,0-1.45l8.34-7.72c.17-.16.37-.29.6-.38.23-.09.48-.14.73-.14s.5.05.73.14c.23.09.43.22.6.38l8.34,7.72c.43.4.43,1.05,0,1.45-.43.4-1.14.4-1.57,0l-8.1-7.51Z\"/>" }
});
ArrowHorizontalUp.displayName = "ArrowHorizontalUp";
var tags = ["ArrowHorizontalUp", ""];
//#endregion
export { ArrowHorizontalUp, tags };
//# sourceMappingURL=ArrowHorizontalUp.mjs.map