10 lines
268 B
TypeScript
10 lines
268 B
TypeScript
import Image from "@/components/Image"
|
|
|
|
import type { IconProps } from "@/types/components/icon"
|
|
|
|
export default function HouseIcon({ height = 20, width = 20 }: IconProps) {
|
|
return (
|
|
<Image alt="House Icon" height={height} src="/home.svg" width={width} />
|
|
)
|
|
}
|