"use client"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Clock, CheckCircle, Eye, FileText } from "lucide-react"; interface ComplianceResponseStatsProps { stats: { inProgress: number; completed: number; reviewed: number; total: number; }; onFilterChange?: (filter: 'all' | 'IN_PROGRESS' | 'COMPLETED' | 'REVIEWED') => void; currentFilter?: string; } export function ComplianceResponseStats({ stats, onFilterChange, currentFilter }: ComplianceResponseStatsProps) { return (
총 {stats.total}개 응답
작성 중인 응답
제출 완료된 응답
검토 완료된 응답