import * as React from 'react'
import Svg, { G, Circle, Rect } from 'react-native-svg'

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

function Info(props: SvgIconProps): React.ReactElement {
  return (
    <Svg width={16} height={16} viewBox="0 0 16 16" {...props}>
      <G fill="none" fillRule="evenodd">
        <Circle stroke="#475060" strokeWidth={2} cx={8} cy={8} r={7} />
        <Rect fill="#475060" x={7} y={7} width={2} height={5} rx={1} />
        <Rect fill="#475060" x={7} y={4} width={2} height={2} rx={1} />
      </G>
    </Svg>
  )
}

export default Info
