import React from 'react'; import { cn } from '@/lib/utils'; interface ChatInputContainerProps { children: React.ReactNode; className?: string; } export function ChatInputContainer({ children, className }: ChatInputContainerProps) { return (