'use client'; import { Trash2 } from 'lucide-react'; import { useI18n } from '@/lib/hooks/use-i18n'; import { deleteSlideElement } from './use-slide-surface'; /** Trash button for the anchored bars — deletes the element and clears the selection. */ export function DeleteButton({ elementId }: { readonly elementId: string }) { const { t } = useI18n(); return ( ); }