react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 610 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgCommentUpload(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M19 14a1 1 0 00-1.22.72A7 7 0 0111 20H5.41l.64-.63a1 1 0 000-1.41A7 7 0 0111 6a1 1 0 000-2 9 9 0 00-7 14.62l-1.71 1.67a1 1 0 00-.21 1.09A1 1 0 003 22h8a9 9 0 008.72-6.75A1 1 0 0019 14zm2.71-8.74l-3-3a1 1 0 00-.33-.21 1 1 0 00-.76 0 1 1 0 00-.33.21l-3 3a1 1 0 001.42 1.42L17 5.41V11a1 1 0 002 0V5.41l1.29 1.3a1 1 0 001.42 0 1 1 0 000-1.42z" fill="currentColor"/>
</Svg>);
}
export default SvgCommentUpload;