import React from 'react' export default function MutualFollowersBadge({ context }) { const label = context?.follower_overlap?.label || context?.shared_following?.label || null if (!label) return null return ( {label} ) }