react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 476 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgArrowToRight(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M17.71 11.29l-4-4a1 1 0 10-1.42 1.42l2.3 2.29H3a1 1 0 000 2h11.59l-2.3 2.29a1 1 0 000 1.42 1 1 0 001.42 0l4-4a1 1 0 00.21-.33 1 1 0 000-.76 1 1 0 00-.21-.33zM21 4a1 1 0 00-1 1v14a1 1 0 002 0V5a1 1 0 00-1-1z" fill="currentColor"/>
</Svg>);
}
export default SvgArrowToRight;