import { Reply, Forward, Trash2, Archive, MoreVertical, Star, User } from 'lucide-react';
export default function EmailDetail({ email, onDelete }) {
return (
{/* Toolbar */}
{/* Email Content */}
{email.subject}
{email.sender}
to me ยท {email.date}
{email.label}
{email.priority} Priority
{email.body}
Best regards,
The {email.sender} Team
{/* Action Buttons */}
);
}