react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 469 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgAngleDoubleRight(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M8.46 8.29A1 1 0 107 9.71L9.34 12 7 14.29a1 1 0 000 1.42 1 1 0 001.42 0l3-3a1 1 0 000-1.42zm8.5 3l-3-3a1 1 0 00-1.42 1.42l2.3 2.29-2.3 2.29a1 1 0 000 1.42 1 1 0 001.42 0l3-3a1 1 0 00.04-1.42z" fill="currentColor"/>
</Svg>);
}
export default SvgAngleDoubleRight;