react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 570 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgArrowsLeftDown(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21.71 16.29a1 1 0 00-1.42 0L18 18.59V9a3 3 0 00-3-3H5.41l2.3-2.29a1 1 0 00-1.42-1.42l-4 4a1 1 0 00-.21.33 1 1 0 000 .76 1 1 0 00.21.33l4 4a1 1 0 001.42 0 1 1 0 000-1.42L5.41 8H15a1 1 0 011 1v9.59l-2.29-2.3a1 1 0 00-1.42 1.42l4 4a1 1 0 00.33.21.94.94 0 00.76 0 1 1 0 00.33-.21l4-4a1 1 0 000-1.42z" fill="currentColor"/>
</Svg>);
}
export default SvgArrowsLeftDown;