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

type Iprops = {
    className?: string
}

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

export default RightArrow
