@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 426 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgExpandLeftRightLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M9.043 5.793 2.836 12l6.207 6.207 1.414-1.414L5.664 12l4.793-4.793-1.414-1.414Zm5.914 12.414L21.164 12l-6.207-6.207-1.414 1.414L18.336 12l-4.793 4.793 1.414 1.414Z" />
</Svg>
);
export default SvgExpandLeftRightLine;