import type { ReactElement } from 'react' import { getLanguageDisplayParts } from '@/lib/language-display-meta' import { cn } from '@/lib/utils' type LinesProps = { tag: string /** Tighter layout for nested menus */ compact?: boolean className?: string } /** Three-line block: code (mono) · English · native — for `SelectItem` / menus. */ export function LanguageSelectOptionLines({ tag, compact, className }: LinesProps): ReactElement { const p = getLanguageDisplayParts(tag) return (