"use client";

import Image from "next/image";

interface ScrollToTopProps {
  icon: string;
}

export default function ScrollToTop({ icon }: ScrollToTopProps) {
  const handleClick = () => {
    window.scrollTo({ top: 0, behavior: "smooth" });
  };

  return (
    <button id="scrollTopBtn" onClick={handleClick} aria-label="Scroll to top">
      <Image src={icon} alt="Scroll to top arrow icon" width={14} height={15} />
    </button>
  );
}
