react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 471 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgLeftArrowToLeft(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21 11H9.41l2.3-2.29a1 1 0 10-1.42-1.42l-4 4a1 1 0 00-.21.33 1 1 0 000 .76 1 1 0 00.21.33l4 4a1 1 0 001.42 0 1 1 0 000-1.42L9.41 13H21a1 1 0 000-2zM3 3a1 1 0 00-1 1v16a1 1 0 002 0V4a1 1 0 00-1-1z" fill="currentColor"/>
</Svg>);
}
export default SvgLeftArrowToLeft;