import type * as React from 'react' import { cn } from '../../utils/cn' export interface InfoCardRowSection { title: string caption: string icon?: React.ReactNode } export interface InfoCardRowProps { lead: InfoCardRowSection stats: [InfoCardRowSection, InfoCardRowSection] className?: string } const CELL = 'flex items-center gap-[var(--spacing-system-s)] min-w-0 p-[var(--spacing-system-xsf)] md:p-[var(--spacing-system-m)] min-h-[60px] md:min-h-[76px]' function StatCell({ section, className }: { section: InfoCardRowSection; className?: string }) { return (

{section.title}

{section.caption}

{section.icon && (
{section.icon}
)}
{section.icon && (
{section.icon}
)}
) } export function InfoCardRow({ lead, stats, className }: InfoCardRowProps) { return (
{lead.icon && (
{lead.icon}
)}

{lead.title}

{lead.caption}

) }