Files
ln-bi/src/modules/mileage/DailyReportView.tsx
lingniu a558db5795
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Polish mobile BI filters and summaries
2026-06-27 22:43:43 +08:00

19 lines
792 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { FileText } from 'lucide-react';
import { SurfaceCard } from '../../components/ui/surface';
export default function DailyReportView() {
return (
<SurfaceCard className="min-h-[360px]">
<div className="flex min-h-[320px] flex-col items-center justify-center px-6 py-10 text-center">
<div className="flex h-14 w-14 items-center justify-center rounded-2xl bg-slate-100 text-slate-400">
<FileText size={26} />
</div>
<div className="mt-4 text-base font-black text-slate-800"></div>
<div className="mt-2 max-w-md text-xs font-bold leading-relaxed text-slate-400">
</div>
</div>
</SurfaceCard>
);
}