## Problem Description <!-- A clear and concise description of what the problem is. Include any additional context that might help us understand the issue. --> Right now react-scroll-direction can track only `window` scroll. It would be great if it could track scroll for any custom scrollable element. ## Suggested Solution <!-- If you have any suggestion on how to fix the issue please provide it here. If not, just leave this section blank. --> Maybe make it accept a ref? ```js const ref = useRef(); const { scrollDir } = useDetectScroll({ ref }); ```