react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 561 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgArrowsRightDown(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M20.92 6.62a1 1 0 00-.21-.33l-3-3a1 1 0 00-1.42 1.42L17.59 6H9a3 3 0 00-3 3v8.59l-1.29-1.3a1 1 0 00-1.42 1.42l3 3a1 1 0 00.33.21.94.94 0 00.76 0 1 1 0 00.33-.21l3-3a1 1 0 00-1.42-1.42L8 17.59V9a1 1 0 011-1h8.59l-1.3 1.29a1 1 0 000 1.42 1 1 0 001.42 0l3-3a1 1 0 00.21-.33 1 1 0 000-.76z" fill="currentColor"/>
</Svg>);
}
export default SvgArrowsRightDown;