UNPKG

react-native-remix-icon

Version:
16 lines (15 loc) 477 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; const SvgContractLeftRightLine = props => ( <Svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" width={24} height={24} {...props} > <Path d="M18.793 5.793 12.586 12l6.207 6.207 1.414-1.414L15.414 12l4.793-4.793zM5.207 18.207 11.414 12 5.207 5.793 3.793 7.207 8.586 12l-4.793 4.793z" /> </Svg> ); export default SvgContractLeftRightLine;