react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 396 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgAngleLeft(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M11.29 12l3.54-3.54a1 1 0 000-1.41 1 1 0 00-1.42 0l-4.24 4.24a1 1 0 000 1.42L13.41 17a1 1 0 00.71.29 1 1 0 00.71-.29 1 1 0 000-1.41z" fill="currentColor"/>
</Svg>);
}
export default SvgAngleLeft;