react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 449 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgArrowToBottom(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M19 20H5a1 1 0 000 2h14a1 1 0 000-2zm-7.71-2.29a1 1 0 00.33.21.94.94 0 00.76 0 1 1 0 00.33-.21l4-4a1 1 0 00-1.42-1.42L13 14.59V3a1 1 0 00-2 0v11.59l-2.29-2.3a1 1 0 10-1.42 1.42z" fill="currentColor"/>
</Svg>);
}
export default SvgArrowToBottom;