import { ArrowsClockwise } from '@phosphor-icons/react' export interface DetectedRename { old_path: string new_path: string } interface RenameDetectedBannerProps { renames: DetectedRename[] onUpdate: () => void onDismiss: () => void } export function RenameDetectedBanner({ renames, onUpdate, onDismiss }: RenameDetectedBannerProps) { if (renames.length === 0) return null const count = renames.length return (