dathost-remixicon-react
Version:
Remix Icon for React
6 lines (5 loc) • 396 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { memo } from "react";
const SvgArrowRightDownLine = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", ...props, children: _jsx("path", { d: "M14.59 16.003 5.983 7.397l1.414-1.415 8.607 8.607V7.003h2v11h-11v-2z" }) }));
const Memo = memo(SvgArrowRightDownLine);
export default Memo;