dathost-remixicon-react
Version:
Remix Icon for React
6 lines (5 loc) • 394 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { memo } from "react";
const SvgArrowDropRightLine = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", ...props, children: _jsx("path", { d: "M12.172 12 9.343 9.173l1.415-1.414L15 12l-4.242 4.242-1.415-1.414z" }) }));
const Memo = memo(SvgArrowDropRightLine);
export default Memo;