import { cn } from "../lib/utils"; interface ChatHandoffIndicatorProps { content: string; } export function ChatHandoffIndicator({ content }: ChatHandoffIndicatorProps) { return (
{content}
); }