import * as React from 'react'
import Svg, { Path } from 'react-native-svg'

import { SvgIconProps } from '../components/SvgIcon'

function Comment(props: SvgIconProps) {
  const size = props.size ?? 17
  return (
    <Svg width={size} height={size} viewBox="0 0 17 17" fill="none" {...props}>
      <Path
        d="M14.875 8.146a5.936 5.936 0 01-.637 2.691 6.021 6.021 0 01-5.384 3.33 5.936 5.936 0 01-2.691-.638l-4.038 1.346 1.346-4.037a5.936 5.936 0 01-.638-2.692 6.02 6.02 0 013.33-5.384 5.936 5.936 0 012.691-.637h.354a6.007 6.007 0 015.667 5.667v.354z"
        stroke={props.stroke ?? '#9EACC6'}
        strokeWidth={2}
        strokeLinecap="round"
        strokeLinejoin="round"
      />
    </Svg>
  )
}

export default Comment
