diff --git a/components/mail/mail-toolbar.tsx b/components/mail/mail-toolbar.tsx new file mode 100644 index 00000000..96048531 --- /dev/null +++ b/components/mail/mail-toolbar.tsx @@ -0,0 +1,34 @@ +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 ( +