import React from 'react';
const StatsCard = ({ title, value, icon: Icon, trend }) => {
return (
{title}
{value}
{trend && (
0 ? 'var(--status-online)' : 'var(--status-offline)' }}>
{trend > 0 ? '↑' : '↓'} {Math.abs(trend)}% from last hour
)}
{/* Decorative Glow */}
);
};
export default StatsCard;