export default function Email2({
  width,
  height,
  className,
}: {
  width?: number;
  height?: number;
  className?: string;
}) {
  return (
    <svg
      width={width || 20}
      height={height || 20}
      viewBox="0 0 20 20"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path
        d="M1.66797 5.83203L8.47205 10.5949C9.02305 10.9806 9.29855 11.1734 9.59822 11.2481C9.86289 11.3141 10.1397 11.3141 10.4044 11.2481C10.7041 11.1734 10.9796 10.9806 11.5306 10.5949L18.3346 5.83203M5.66797 16.6654H14.3346C15.7348 16.6654 16.4348 16.6654 16.9696 16.3929C17.4401 16.1532 17.8225 15.7708 18.0621 15.3004C18.3346 14.7655 18.3346 14.0655 18.3346 12.6654V7.33203C18.3346 5.9319 18.3346 5.23183 18.0621 4.69706C17.8225 4.22665 17.4401 3.8442 16.9696 3.60451C16.4348 3.33203 15.7348 3.33203 14.3346 3.33203H5.66797C4.26784 3.33203 3.56777 3.33203 3.03299 3.60451C2.56259 3.8442 2.18014 4.22665 1.94045 4.69706C1.66797 5.23183 1.66797 5.9319 1.66797 7.33203V12.6654C1.66797 14.0655 1.66797 14.7655 1.94045 15.3004C2.18014 15.7708 2.56259 16.1532 3.03299 16.3929C3.56777 16.6654 4.26784 16.6654 5.66797 16.6654Z"
        stroke="currentColor"
        strokeWidth="1.5"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
    </svg>
  );
}
