import React from 'react'; import { SendHorizontal, Loader2 } from 'lucide-react'; import { Button } from '@/components/ui/button'; interface ComposeEmailFooterProps { sending: boolean; onSend: () => Promise; onCancel: () => void; } export default function ComposeEmailFooter({ sending, onSend, onCancel }: ComposeEmailFooterProps) { return (
{sending ? 'Sending your email...' : 'Ready to send'}
); }