import React from 'react'; interface StatsDisplayProps { value: string | number; label: string; subtext?: string; className?: string; } export const StatsDisplay: React.FC = ({ value, label, subtext, className = '' }) => { return (
{value} {label} {subtext && ( {subtext} )}
); };