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

const Phone48: FC<ADSIcon>  = 
    ({fill, size = '3rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
  <path fill-rule="evenodd" d="M17.393 5.443a1.5 1.5 0 0 0-1.687-.914l-10 2A1.5 1.5 0 0 0 4.5 7.999c0 8.527 4.765 17.387 11.44 24.062C22.613 38.735 31.472 43.5 40 43.5a1.5 1.5 0 0 0 1.47-1.206l2-10a1.5 1.5 0 0 0-.913-1.687l-10-4a1.5 1.5 0 0 0-1.618.332l-2.533 2.534a42.81 42.81 0 0 1-9.879-9.879l2.534-2.533a1.5 1.5 0 0 0 .332-1.618l-4-10Zm-1.015 16.3-2.851 2.852a42.443 42.443 0 0 0 4.534 5.344 42.426 42.426 0 0 0 5.344 4.534l2.852-2.851a45.872 45.872 0 0 1-9.879-9.88Zm22.4 18.72c-4.25-.256-8.668-1.82-12.811-4.309l6.394-6.394 7.923 3.17-1.506 7.533ZM18.24 15.639l-6.394 6.394c-2.49-4.143-4.053-8.562-4.309-12.81l7.534-1.508 3.169 7.924Z"/>
</svg>
)
export default Phone48