import React from 'react' import { Card, CardContent } from "@/app/_components/ui/card" interface StatCardProps { title: string value: string change: string isPositive?: boolean icon?: React.ReactNode bgColor?: string } export function StatCard({ title, value, change, isPositive = false, icon, bgColor = "bg-white/10" }: StatCardProps) { return (
{icon} {title} {change}
{value}
) }