import React from 'react'; import { LucideIcon } from 'lucide-react'; interface StatsCardProps { icon: LucideIcon; title: string; value: number; iconBgColor: string; iconColor: string; } export function StatsCard({ icon: Icon, title, value, iconBgColor, iconColor }: StatsCardProps) { return (
{title}
{value}