'use client' import { ChevronDoubleUpIcon } from '@heroicons/react/24/outline' import { useScroll } from '@/hooks/useScroll' export function ScrollUp() { const { isAtBottom, scrollToTop } = useScroll() if (!isAtBottom) { return null } return ( ) }