import React from 'react' import { Card, CardContent } from "@/app/_components/ui/card" interface IStatCardProps { 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" }: IStatCardProps) { return (
{icon} {title} {change}
{value}
) }