Files
web/components/Icons/Phone.tsx
2024-04-16 09:24:31 +02:00

10 lines
269 B
TypeScript

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