15 lines
312 B
TypeScript
15 lines
312 B
TypeScript
import Image from "@/components/Image"
|
|
|
|
import type { IconProps } from "@/types/components/icon"
|
|
|
|
export default function CalendarIcon({ height = 20, width = 20 }: IconProps) {
|
|
return (
|
|
<Image
|
|
alt="Calendar Icon"
|
|
height={height}
|
|
src="/calendar_month.svg"
|
|
width={width}
|
|
/>
|
|
)
|
|
}
|