react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 492 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgArrowCircleLeft(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M8.29 11.29a1 1 0 00-.21.33 1 1 0 000 .76 1 1 0 00.21.33l3 3a1 1 0 001.42-1.42L11.41 13H15a1 1 0 000-2h-3.59l1.3-1.29a1 1 0 000-1.42 1 1 0 00-1.42 0zM2 12A10 10 0 1012 2 10 10 0 002 12zm18 0a8 8 0 11-8-8 8 8 0 018 8z" fill="currentColor"/>
</Svg>);
}
export default SvgArrowCircleLeft;