15 lines
307 B
TypeScript
15 lines
307 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="/alternate_email.svg"
|
|
width={width}
|
|
/>
|
|
)
|
|
}
|