interface GeneratingAnimationProps { branchContext?: { current: number; total: number } } export function GeneratingAnimation({ branchContext }: GeneratingAnimationProps) { return (
{/* Spinner */}
{/* Branch context (Generate All mode) */} {branchContext ? ( <>

Branch {branchContext.current} of {branchContext.total}

Generating branch detail...

) : (

Generating...

)}
) }