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

18 lines
322 B
TypeScript

import Image from "@/components/Image"
import type { IconProps } from "@/types/components/icon"
export default function ChevronDownIcon({
height = 20,
width = 20,
}: IconProps) {
return (
<Image
alt="Chevron Down Icon"
height={height}
src="/chevron-down.svg"
width={width}
/>
)
}