react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 431 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgArrowLeft(props) {
return (<Svg data-name="Layer 1" viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M17 11H9.41l3.3-3.29a1 1 0 10-1.42-1.42l-5 5a1 1 0 00-.21.33 1 1 0 000 .76 1 1 0 00.21.33l5 5a1 1 0 001.42 0 1 1 0 000-1.42L9.41 13H17a1 1 0 000-2z" fill="currentColor"/>
</Svg>);
}
export default SvgArrowLeft;