"use client"; import { useTranslations } from "next-intl"; import { Loader2 } from "lucide-react"; interface Props { status?: string; } export function AssistantStatusLine({ status }: Props) { const t = useTranslations(); const text = status ?? t("features.assistant.thinking"); return (