import * as Icons from "lucide-react" import { hexToRgbA } from "./planHelpers" export function StatCard({ label, value = "—", Icon = Icons.Info, accent, className = "", title }: { label: string value?: React.ReactNode Icon?: React.ComponentType> accent?: string | null className?: string title?: string }) { const border = hexToRgbA(accent, .28) const chipBg = hexToRgbA(accent, .08) const glow = hexToRgbA(accent, .14) return (
{label}
{value}
) }