import React from 'react'; interface Stat { value: string; label: string; icon?: React.ReactNode; } interface StatsProps { stats: Stat[]; } export default function Stats({ stats }: StatsProps) { return (
{stats.map((stat, index) => (
{stat.icon && (
{stat.icon}
)}
{stat.value}
{stat.label}
{/* Industrial accent line */}
))}
); }