import { ComponentProps } from "react";

export const Mail = (props: ComponentProps<"svg">) => {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      width="20"
      height="18"
      viewBox="0 0 20 18"
      fill="none"
      {...props}
    >
      <path
        fillRule="evenodd"
        clipRule="evenodd"
        d="M14.2625 0.375C15.5428 0.375 16.7743 0.880999 17.6804 1.78893C18.5873 2.69496 19.0943 3.91699 19.0943 5.19631V12.7386C19.0943 15.4022 16.9271 17.5599 14.2625 17.5599H4.83086C2.16625 17.5599 0 15.4022 0 12.7386V5.19631C0 2.53266 2.1567 0.375 4.83086 0.375H14.2625ZM15.7814 6.61884L15.8578 6.54246C16.086 6.26559 16.086 5.86461 15.8473 5.58774C15.7146 5.44549 15.5323 5.35861 15.3423 5.33952C15.1418 5.32902 14.9508 5.3968 14.8067 5.53046L10.5019 8.96743C9.94813 9.42665 9.15476 9.42665 8.59243 8.96743L4.29622 5.53046C3.9993 5.31088 3.58877 5.33952 3.3415 5.59729C3.08373 5.85506 3.05509 6.26559 3.27372 6.55201L3.39879 6.67612L7.74274 10.0654C8.27738 10.4854 8.92563 10.7146 9.60443 10.7146C10.2813 10.7146 10.941 10.4854 11.4747 10.0654L15.7814 6.61884Z"
        fill="white"
      />
    </svg>
  );
};
