import { TrendingDown, AlertTriangle, Shield, Target } from 'lucide-react'; interface StatisticsBarProps { totalPatterns: number; criticalCount: number; complianceScore: number; avgConfidence: number; } export function StatisticsBar({ totalPatterns, criticalCount, complianceScore, avgConfidence, }: StatisticsBarProps) { return (