'use client'; import { Users, Crown, Shield, Calendar, TrendingUp } from 'lucide-react'; interface UsersStatsProps { stats: { total: number; admins: number; verified: number; newThisMonth: number; }; } export function UsersStats({ stats }: UsersStatsProps) { const statsData = [ { title: "Total Usuarios", value: stats.total, icon: Users, gradient: "from-ios-primary to-ios-secondary", trend: { value: 12, direction: "up" as const } }, { title: "Administradores", value: stats.admins, icon: Crown, gradient: "from-ios-warning to-ios-orange" }, { title: "Verificados", value: stats.verified, icon: Shield, gradient: "from-ios-success to-ios-mint" }, { title: "Nuevos Este Mes", value: stats.newThisMonth, icon: Calendar, gradient: "from-ios-purple to-ios-pink", trend: { value: 8, direction: "up" as const } } ]; return (