"use client"; import type { ComponentProps } from "react"; import { cn } from '../../lib/utils'; import { mono, ShimmerLabel } from './surfaces'; export function ThinkingIndicator({ label, elapsed, className, ...props }: Omit, "children" | "label" | "elapsed"> & { label: string; elapsed?: string; }) { return (
{label} {elapsed !== undefined && ( {elapsed} )}
); }