import { cn } from '@/lib/utils'; type MetricCardProps = { label: string; value: string; delta?: string; positive?: boolean; className?: string; }; export function MetricCard({ label, value, delta, positive = true, className }: MetricCardProps) { return (

{label}

{value}

{delta ? (

{delta}

) : null}
); }