interface TagBadgeProps { count: number; className?: string; } export function TagBadge({ count, className = '' }: TagBadgeProps) { return ( {count} ); }