'use client'; import React from 'react'; import { motion } from 'framer-motion'; import { Box } from '@/ui/Box'; interface ProgressLineProps { isLoading: boolean; className?: string; } export function ProgressLine({ isLoading, className = '' }: ProgressLineProps) { if (!isLoading) return null; return ( ); }