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 SvgCommentNotes(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M11 11h6a1 1 0 000-2h-6a1 1 0 000 2zM7 9a1 1 0 101 1 1 1 0 00-1-1zm0 4a1 1 0 101 1 1 1 0 00-1-1zm5-11A10 10 0 002 12a9.89 9.89 0 002.26 6.33l-2 2a1 1 0 00-.21 1.09A1 1 0 003 22h9a10 10 0 000-20zm0 18H5.41l.93-.93a1 1 0 00.3-.71 1 1 0 00-.3-.7A8 8 0 1112 20zm5-7h-6a1 1 0 000 2h6a1 1 0 000-2z" fill="currentColor"/>
</Svg>);
}
export default SvgCommentNotes;