react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 470 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgAngleDoubleUp(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M12.71 12.54a1 1 0 00-1.42 0l-3 3A1 1 0 009.71 17L12 14.66 14.29 17a1 1 0 001.42 0 1 1 0 000-1.42zm-3-1.08L12 9.16l2.29 2.3a1 1 0 001.42 0 1 1 0 000-1.42l-3-3a1 1 0 00-1.42 0l-3 3a1 1 0 001.42 1.42z" fill="currentColor"/>
</Svg>);
}
export default SvgAngleDoubleUp;