import { ArrowIcon } from "./icons/ArrowIcon"; interface ScrollDownProps { href?: string; className?: string; text?: string; light?: boolean; } /** * ScrollDown — interactive scroll indicator. * Matches original tenext reference animation and styling. */ export function ScrollDown({ href = "#scroll-down", className = "", text = "Scroll down", light = true, }: ScrollDownProps) { return ( {text} ); }