import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; import { Search, RefreshCw, Plus } from 'lucide-react'; interface MailToolbarProps { onCompose?: () => void; onRefresh?: () => void; onSearch?: (query: string) => void; } export const MailToolbar = ({ onCompose, onRefresh, onSearch }: MailToolbarProps) => { return (
onSearch?.(e.target.value)} />
); };