export function StatsStrip({ items, tone = "paper", }: { items: { value: string | number; label: string }[]; tone?: "paper" | "dark" | "violet"; }) { const bg = tone === "dark" ? "bg-neutral-900 text-white" : tone === "violet" ? "bg-violet-700 text-white" : "bg-white text-neutral-900"; return (
{items.map((it) => (
{it.value}
{it.label}
))}
); }