"use client" import { motion, useScroll, type MotionProps } from "motion/react" import { cn } from "@/lib/utils" interface ScrollProgressProps extends Omit< React.HTMLAttributes, keyof MotionProps > { ref?: React.Ref } export function ScrollProgress({ className, ref, ...props }: ScrollProgressProps) { const { scrollYProgress } = useScroll() return ( ) }