Files
web/components/Icons/Email.tsx
2024-04-17 17:29:24 +02:00

15 lines
321 B
TypeScript

import Image from "@/components/Image"
import type { IconProps } from "@/types/components/icon"
export default function EmailIcon({ height = 20, width = 20 }: IconProps) {
return (
<Image
alt="Email Icon"
height={height}
src="/_static/icons/alternate_email.svg"
width={width}
/>
)
}