import { Rocket, Bot, Ticket, Calendar, LucideIcon, Plus } from 'lucide-react' import { Card, CardContent } from '@/components/ui/card' import { Badge } from '@/components/ui/badge' interface StatsCardProps { value: string | number label: string icon: LucideIcon iconColor?: string trend?: string trendColor?: string } export function StatsCard({ value, label, icon: Icon, iconColor = 'bg-primary/10 text-primary', trend, trendColor = 'bg-emerald-500/10 text-emerald-400 border-emerald-500/10', }: StatsCardProps) { return (
{trend && ( {trend} )}

{label}

{value}

) }