dathost-remixicon-react
Version:
Remix Icon for React
6 lines (5 loc) • 385 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { memo } from "react";
const SvgArrowLeftDownLine = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", ...props, children: _jsx("path", { d: "m9 13.589 8.607-8.607 1.414 1.415-8.607 8.606H18v2H7v-11h2z" }) }));
const Memo = memo(SvgArrowLeftDownLine);
export default Memo;