import { cn } from '@/lib/utils'; interface CategoryCountBadgeProps { count: number; active?: boolean; /** `solid` = on primary-filled pill; `list` = selected row in dropdown */ variant?: 'solid' | 'list'; className?: string; } export function CategoryCountBadge({ count, active, variant = 'list', className, }: CategoryCountBadgeProps) { return ( {count} ); }