export const PhoneIcon = ({ ...props }) => {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      viewBox="0 0 513.64 513.64"
      {...props}
    >
      <path
        d="M499.66 376.96l-71.68-71.68c-25.6-25.6-69.12-15.359-79.36 17.92-7.68 23.041-33.28 35.841-56.32 30.72-51.2-12.8-120.32-79.36-133.12-133.12-7.68-23.041 7.68-48.641 30.72-56.32 33.28-10.24 43.52-53.76 17.92-79.36l-71.68-71.68c-20.48-17.92-51.2-17.92-69.12 0L18.38 62.08c-48.64 51.2 5.12 186.88 125.44 307.2s256 176.641 307.2 125.44l48.64-48.64c17.921-20.48 17.921-51.2 0-69.12z"
        fill="currentColor"
      />
    </svg>
  );
};

export const PhoneOutlineIcon: React.FC<React.SVGAttributes<{}>> = (props) => {
  return (
    <svg
      width="1em"
      height="1em"
      viewBox="0 0 16 16"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      {...props}
    >
      <path
        opacity={0.2}
        d="M13.996 10.88A3.022 3.022 0 0111 13.5 8.5 8.5 0 012.5 5a3.02 3.02 0 012.62-2.996.5.5 0 01.519.3l1.32 2.95a.5.5 0 01-.04.47L5.581 7.312a.496.496 0 00-.033.489c.517 1.058 1.61 2.138 2.672 2.65a.494.494 0 00.489-.037l1.563-1.33a.5.5 0 01.474-.044l2.947 1.32a.5.5 0 01.302.52z"
        fill="currentColor"
      />
      <path
        d="M13.898 9.904l-2.944-1.32-.008-.003a1 1 0 00-.995.122L8.429 10c-.963-.468-1.958-1.456-2.426-2.407L7.3 6.05a1 1 0 00.118-.99v-.007l-1.323-2.95a1 1 0 00-1.038-.594A3.516 3.516 0 002 5c0 4.963 4.038 9 9 9a3.516 3.516 0 003.492-3.057 1 1 0 00-.594-1.04zM11 13a8.009 8.009 0 01-8-8 2.512 2.512 0 012.18-2.5v.007l1.312 2.938L5.2 6.991a1 1 0 00-.098 1.03c.566 1.158 1.733 2.316 2.904 2.882a1 1 0 001.03-.107l1.52-1.296 2.937 1.316h.007A2.513 2.513 0 0111 13z"
        fill="currentColor"
      />
    </svg>
  );
};

export const PhoneIconNew: React.FC<React.SVGAttributes<{}>> = (props) => {
  return (
    <svg
      width="1em"
      height="1em"
      viewBox="0 0 16 17"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      {...props}
    >
      <path
        opacity={0.2}
        d="M13.996 11.38A3.022 3.022 0 0111 14a8.5 8.5 0 01-8.5-8.5 3.02 3.02 0 012.62-2.996.5.5 0 01.519.3l1.32 2.95a.5.5 0 01-.04.47L5.581 7.812a.496.496 0 00-.033.489c.517 1.058 1.61 2.138 2.672 2.65a.494.494 0 00.489-.037l1.563-1.33a.5.5 0 01.474-.044l2.947 1.32a.5.5 0 01.302.52z"
        fill="currentColor"
      />
      <path
        d="M13.898 10.404l-2.944-1.32-.008-.003a1 1 0 00-.995.122L8.429 10.5c-.963-.468-1.958-1.456-2.426-2.407L7.3 6.55a1 1 0 00.118-.99v-.007l-1.323-2.95a1 1 0 00-1.038-.595A3.516 3.516 0 002 5.5c0 4.963 4.038 9 9 9a3.516 3.516 0 003.492-3.057 1 1 0 00-.594-1.04zM11 13.5a8.009 8.009 0 01-8-8A2.512 2.512 0 015.18 3v.007l1.312 2.938L5.2 7.491a1 1 0 00-.098 1.03c.566 1.158 1.733 2.316 2.904 2.882a1 1 0 001.03-.107L10.556 10l2.937 1.316h.007A2.513 2.513 0 0111 13.5z"
        fill="currentColor"
      />
    </svg>
  );
};