"use client"; import { memo } from "react"; import { ArrowUpRight } from "lucide-react"; import { cls } from "@/lib/utils"; interface OverlayArrowButtonProps { ariaLabel?: string; className?: string; } const OverlayArrowButton = memo(({ ariaLabel = "View details", className = "", }: OverlayArrowButtonProps) => { return (
); }); OverlayArrowButton.displayName = "OverlayArrowButton"; export default OverlayArrowButton;