import { images } from "@/lib/images"
import { cn } from "@/lib/utils"
import Image from "next/image"

type Iprops = {
    className?: string
}

const LeftArrow = ({ className }: Iprops) => (
    <Image
        src={images.LeftArrow}
        alt="right-arrow"
        className={cn(className)}
    />
)

export default LeftArrow
