import { motion } from "motion/react" interface ProgressBarProps { /** * The duration of the animation in seconds. * * @default 2 */ duration?: number } export const ProgressBar = ({ duration = 2 }: ProgressBarProps) => { return ( ) }