import type { WidgetTranslations } from '../i18n'; interface ProcessingViewProps { progress: number; clothingImage?: string; t: WidgetTranslations['processing']; } export function ProcessingView({ progress, clothingImage, t }: ProcessingViewProps) { const displayProgress = Math.min(Math.max(progress, 0), 100); return (
{t.subtitle}