react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 481 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgAngleDoubleLeft(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M11.46 8.29a1 1 0 00-1.42 0l-3 3a1 1 0 000 1.42l3 3a1 1 0 001.42 0 1 1 0 000-1.42L9.16 12l2.3-2.29a1 1 0 000-1.42zm3.2 3.71L17 9.71a1 1 0 00-1.42-1.42l-3 3a1 1 0 000 1.42l3 3a1 1 0 001.42 0 1 1 0 000-1.42z" fill="currentColor"/>
</Svg>);
}
export default SvgAngleDoubleLeft;