import { GlassSurface } from "@nodedc/ui-react"; export interface MetricCardProps { eyebrow: string; value: string; unit?: string; detail: string; featured?: boolean; } export function MetricCard({ eyebrow, value, unit, detail, featured = false }: MetricCardProps) { return ( {eyebrow}
{value} {unit ? {unit} : null}

{detail}

); }