import React, { FC } from 'react';
import { ADSIcon } from "../../icons.types";

const Phone64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M22.726 7.443a1.5 1.5 0 0 0-1.687-.914L7.706 9.196a1.5 1.5 0 0 0-1.206 1.47c0 11.194 6.264 22.886 15.106 31.728C30.447 51.235 42.14 57.5 53.333 57.5a1.5 1.5 0 0 0 1.471-1.206l2.667-13.333a1.5 1.5 0 0 0-.914-1.687L43.224 35.94a1.5 1.5 0 0 0-1.618.333l-3.676 3.676A57.514 57.514 0 0 1 24.05 26.07l3.676-3.676a1.5 1.5 0 0 0 .332-1.618L22.726 7.443Zm-.827 20.78-4.515 4.514a56.967 56.967 0 0 0 6.343 7.536 56.967 56.967 0 0 0 7.536 6.343l4.515-4.515a60.585 60.585 0 0 1-13.879-13.879Zm30.21 26.25c-6.081-.272-12.412-2.54-18.29-6.171l9.209-9.209 11.256 4.503-2.175 10.876ZM24.907 20.971l-9.209 9.208c-3.632-5.877-5.899-12.208-6.17-18.29l10.876-2.175 4.503 11.257Z"/>
</svg>
)
export default Phone64