// ============================================================================ // Chatbot Main // ============================================================================ import type { HTMLProps, FunctionComponent } from 'react'; export interface ChatbotContentProps extends HTMLProps { /** Content to be displayed in the chatbot */ children: React.ReactNode; /** Custom classname for the ChatbotContent component */ className?: string; /** Sets background color to primary */ isPrimary?: boolean; } export const ChatbotContent: FunctionComponent = ({ children, className, isPrimary, ...props }: ChatbotContentProps) => (
{children}
); export default ChatbotContent;