import React from "react";

const EmailIcon = () => {
	return (
		<svg
			width="24"
			height="24"
			viewBox="0 0 24 24"
			fill="none"
			xmlns="http://www.w3.org/2000/svg"
		>
			<path
				d="M22 6C22 4.9 21.1 4 20 4H4C2.9 4 2 4.9 2 6V18C2 19.1 2.9 20 4 20H20C21.1 20 22 19.1 22 18V6ZM20 6L13.06 10.3375C12.4115 10.7428 11.5885 10.7428 10.94 10.3375L4 6H20ZM20 18H4V8L10.94 12.3375C11.5885 12.7428 12.4115 12.7428 13.06 12.3375L20 8V18Z"
				fill="#173B4A"
			/>
		</svg>
	);
};

export default EmailIcon;
