import React from "react"; interface StatCardProps { label: string; value: string; trend?: string; color: string; } const StatCard: React.FC = ({ label, value, trend, color, }) => (
{label} {trend && ( {trend} )}
{value}
); export default StatCard;