import React from 'react'
import { Path } from 'react-native-svg'

import { genIcon } from './helper/gen'

const IconTelephoneOutline = genIcon({
  render: color => {
    return (
      <Path
        fill={color}
        fillRule="nonzero"
        d="M22.467 15.47l-2.032-1.67c-.97-.796-2.787-.227-3.676.813l-.279.326c-.527.615-1.356.802-1.93.478-.96-.542-1.652-1.056-2.426-1.83-.774-.773-1.287-1.465-1.83-2.426-.324-.574-.137-1.403.479-1.93l.326-.28c1.04-.89 1.607-2.704.812-3.675L10.24 3.242c-.797-.973-2.276-1.016-3.28-.158L5.373 4.442a3.29 3.29 0 0 0-1.15 2.204c-.15 1.795.254 3.786 1.158 5.743.826 1.79 1.83 3.256 3.258 4.683 1.428 1.428 2.894 2.433 4.684 3.258 1.956.904 3.947 1.308 5.742 1.157a3.29 3.29 0 0 0 2.203-1.15l1.358-1.586c.86-1.003.816-2.482-.159-3.281zm-.951 1.16c.292.239.307.753-.029 1.145l-1.358 1.587a1.791 1.791 0 0 1-1.19.63c-1.521.129-3.256-.224-4.988-1.024-1.633-.753-2.952-1.657-4.251-2.956-1.3-1.3-2.204-2.62-2.957-4.251-.8-1.733-1.153-3.468-1.025-4.99.037-.441.266-.877.63-1.19l1.587-1.357c.393-.336.907-.32 1.145-.03l1.67 2.033c.169.205-.13 1.16-.627 1.586l-.326.279c-1.139.975-1.5 2.58-.81 3.806.608 1.075 1.202 1.876 2.076 2.75.874.874 1.675 1.469 2.75 2.076 1.226.69 2.832.33 3.807-.81l.279-.326c.424-.497 1.38-.796 1.584-.628l2.033 1.67z"
      />
    )
  },
})

export default IconTelephoneOutline
