dathost-remixicon-react
Version:
Remix Icon for React
6 lines (5 loc) • 416 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { memo } from "react";
const SvgExpandRightLine = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", ...props, children: _jsx("path", { d: "m17.172 11-4.657-4.657 1.414-1.414L21 12l-7.071 7.071-1.414-1.414L17.172 13H8v-2zM4 19V5h2v14z" }) }));
const Memo = memo(SvgExpandRightLine);
export default Memo;