18 lines
322 B
TypeScript
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}
|
|
/>
|
|
)
|
|
}
|