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