import { clsx } from 'clsx'; import React from 'react'; /** * Props for the ChatWindowFooter component */ export interface ChatWindowFooterProps { /** Content to display in the footer */ children?: React.ReactNode; /** Additional CSS classes to apply to the footer container */ className?: string; /** Optional ARIA label for the footer */ 'aria-label'?: string; } /** * ChatWindowFooter component provides the footer layout for the chat window * Features: * - Consistent footer styling with dark mode support * - Conditionally renders based on children * - Positioned at the bottom of the chat area * * @example * // Basic usage with message input * * * * * @example * // With custom styling * * * */ export const ChatWindowFooter = ({ children, className, 'aria-label': ariaLabel, }: ChatWindowFooterProps) => { return (
{children}
); }; ChatWindowFooter.displayName = 'ChatWindowFooter';