export const ChatIcon: React.FC<React.SVGAttributes<{}>> = (props) => {
  return (
    <svg
      {...props}
      viewBox="0 0 16 17"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        d="M3.27533 2.272C4.65867 2.092 6.06867 2 7.5 2C8.93133 2 10.3413 2.09267 11.7247 2.272C13.006 2.43867 13.9187 3.51267 13.9947 4.75667C13.7718 4.68242 13.5408 4.63519 13.3067 4.616C11.4388 4.46094 9.56123 4.46094 7.69333 4.616C6.12133 4.74667 5 6.076 5 7.572V10.4293C4.99937 10.9785 5.15052 11.5172 5.43674 11.9859C5.72297 12.4546 6.13315 12.8351 6.622 13.0853L4.85333 14.8533C4.78341 14.9232 4.69436 14.9707 4.59742 14.99C4.50049 15.0092 4.40003 14.9993 4.30872 14.9615C4.21741 14.9237 4.13935 14.8597 4.08441 14.7776C4.02946 14.6954 4.00009 14.5988 4 14.5V11.8133C3.75813 11.7876 3.51656 11.7592 3.27533 11.728C1.93667 11.5533 1 10.3887 1 9.07467V4.92533C1 3.612 1.93667 2.44667 3.27533 2.27267V2.272Z"
        fill="currentColor"
      />
      <path
        d="M10.5 5.5C9.58267 5.5 8.674 5.538 7.776 5.61267C6.74933 5.698 6 6.56867 6 7.57267V10.4293C6 11.434 6.752 12.3053 7.78 12.3893C8.60867 12.4573 9.44667 12.494 10.292 12.4993L12.1467 14.3533C12.2166 14.4232 12.3056 14.4707 12.4026 14.49C12.4995 14.5092 12.6 14.4993 12.6913 14.4615C12.7826 14.4237 12.8606 14.3597 12.9156 14.2776C12.9705 14.1954 12.9999 14.0988 13 14V12.4067L13.22 12.3893C14.248 12.306 15 11.434 15 10.4293V7.572C15 6.56867 14.25 5.698 13.224 5.612C12.3179 5.53708 11.4092 5.49971 10.5 5.5Z"
        fill="currentColor"
      />
    </svg>
  );
};

export const ChatIconNew: React.FC<React.SVGAttributes<{}>> = (props) => {
  return (
    <svg
      width="1em"
      height="1em"
      viewBox="0 0 22 22"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      {...props}
    >
      <path
        d="M17 0H5a5.006 5.006 0 00-5 5v8a5.01 5.01 0 004 4.9V21a1 1 0 001.555.832L11.3 18H17a5.006 5.006 0 005-5V5a5.006 5.006 0 00-5-5zm-2 12H7a1 1 0 010-2h8a1 1 0 010 2zm2-4H5a1 1 0 010-2h12a1 1 0 110 2z"
        fill="currentColor"
      />
    </svg>
  );
};