import { cn } from "@/src/utils/tailwind"; interface MentionBadgeProps { userId: string; displayName: string; className?: string; } export function MentionBadge({ userId, displayName, className, }: MentionBadgeProps) { return ( @{displayName} ); }