import { ComponentProps } from "react";

export const Phone = (props: ComponentProps<"svg">) => {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      width="20"
      height="20"
      viewBox="0 0 20 20"
      fill="none"
      {...props}
    >
      <path
        d="M15.4347 12.0998C14.7934 11.9619 14.2861 12.2596 13.8369 12.5197C13.3768 12.7876 12.5021 13.4972 12.0007 13.3157C9.43358 12.2587 7.01919 10.0118 5.97402 7.43434C5.78982 6.92223 6.49611 6.04192 6.76209 5.57646C7.02018 5.12589 7.31175 4.61378 7.17877 3.96769C7.05859 3.3871 5.50414 1.40914 4.95447 0.868257C4.59195 0.510974 4.22058 0.314465 3.83936 0.282702C2.40607 0.22117 0.805315 2.13364 0.524572 2.59116C-0.178777 3.56674 -0.174834 4.86488 0.536391 6.4389C2.25043 10.6668 8.7332 17.0473 12.9769 18.8257C13.7601 19.1919 14.4762 19.3755 15.1195 19.3755C15.7489 19.3755 16.3094 19.1999 16.7912 18.8516C17.1546 18.6421 19.1455 16.9619 19.0933 15.4901C19.0618 15.1149 18.8658 14.7398 18.5131 14.3765C17.9762 13.8218 16.011 12.221 15.4347 12.0998Z"
        fill="white"
      />
    </svg>
  );
};
