aboutsummaryrefslogtreecommitdiff
path: root/src/components/MailIcon.tsx
blob: cff91e1f84827994c15d1e46467a4d5ed1f991f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export default function MailIcon() {
  return (
    <svg
      viewBox="0 0 24 24"
      fill="currentColor"
      className="w-4 h-4"
      aria-hidden="true"
    >
      <path d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Zm0 2-8 6-8-6h16Zm0 12H4V8l8 6 8-6v10Z" />
    </svg>
  );
}