import { Box, Button, Typography } from '@mui/material' import { FileText } from 'lucide-react' import { useOfferWizardStore } from '../../stores/offerWizardStore' interface OfferCreationPanelProps { selectedCount: number needId: string needTitle: string } export function OfferCreationPanel({ selectedCount, needId, needTitle }: OfferCreationPanelProps) { const open = useOfferWizardStore(s => s.open) if (selectedCount === 0) return null return ( {selectedCount} Objekt{selectedCount === 1 ? '' : 'e'} ausgewählt ) }