import React from 'react'; import { Trash2 } from 'lucide-react'; interface Props { messageId: string; onDelete: (id: string) => void; } export function MessageActions({ messageId, onDelete }: Props) { return (
); }