import clsx from 'clsx'; /** * A component for displaying a single statistic item with value and description. */ export function LandingStatItem({ className, value, label, description, variant = 'default', hasBorder = true, }: { className?: string; value: string; label?: string; description: string; variant?: 'primary' | 'secondary' | 'default'; hasBorder?: boolean; }) { return (
{value} {label && {label}}
{description}
); }