import { AlertTriangle } from 'lucide-react' import { translate, type AppLocale } from '../lib/i18n' interface ConflictNoteBannerProps { onKeepMine: () => void onKeepTheirs: () => void locale?: AppLocale } export function ConflictNoteBanner({ onKeepMine, onKeepTheirs, locale = 'en' }: ConflictNoteBannerProps) { return (
{translate(locale, 'editor.banner.conflict')}
) }