import { RefreshCw } from 'lucide-react'; import { motion } from 'motion/react'; import { fmtDate } from './utils'; export default function DailyReportLoadingOverlay({ reportDate }: { reportDate: string }) { return (
正在加载日报
正在汇总 {fmtDate(reportDate)} 的里程数据
); }