import { Alert, Box, Button, CircularProgress, Divider } from '@mui/material' import { ArrowRight, Bookmark, Search } from 'lucide-react' interface Props { canProceed: boolean isSearching: boolean isSavingProfile: boolean onSearch: () => void onSaveProfile: () => void } export function AISearchActionBar({ canProceed, isSearching, isSavingProfile, onSearch, onSaveProfile }: Props) { const isProcessing = isSearching || isSavingProfile return ( <> Jetzt suchen liefert sofortige Ergebnisse.{' '} Als Suchprofil speichern legt einen dauerhaften Bedarf an, der automatisch mit neuen Angeboten abgeglichen wird — auch in Zukunft. ) }