import { Card, CardContent, CardHeader, CardTitle } from "@/shared/components/ui/card" import { StatItem } from "@/shared/components/ui/stat-item" import { TrendingUp, TrendingDown, BarChart3, Target, Award, CheckCircle2 } from "lucide-react" import type { GradeStats } from "../types" export function GradeStatsCard({ stats }: { stats: GradeStats | null }) { if (!stats || stats.count === 0) { return ( Statistics

No data available for statistics.

) } return ( Statistics
} /> } /> } /> } /> } hint="Standard deviation" /> } hint="Score >= 60% of full" /> } hint="Score >= 85% of full" /> } />
) }