dathost-remixicon-react
Version:
Remix Icon for React
6 lines (5 loc) • 469 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { memo } from "react";
const SvgExpandLeftRightLine = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", ...props, children: _jsx("path", { d: "M9.043 5.793 2.836 12l6.207 6.207 1.414-1.414L5.664 12l4.793-4.793zm5.914 12.414L21.164 12l-6.207-6.207-1.414 1.414L18.336 12l-4.793 4.793z" }) }));
const Memo = memo(SvgExpandLeftRightLine);
export default Memo;