dathost-remixicon-react
Version:
Remix Icon for React
6 lines (5 loc) • 387 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { memo } from "react";
const SvgArrowRightUpLine = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", ...props, children: _jsx("path", { d: "m16.004 9.414-8.607 8.607-1.414-1.414L14.59 8H7.003V6h11v11h-2z" }) }));
const Memo = memo(SvgArrowRightUpLine);
export default Memo;