import type { HTMLProps, FunctionComponent } from 'react'; import { Divider } from '@patternfly/react-core'; export interface ChatbotHeaderProps extends HTMLProps { /** Content to be displayed in the chatbot header */ children: React.ReactNode; /** Custom classname for the header component */ className?: string; } export const ChatbotHeader: FunctionComponent = ({ className, children }: ChatbotHeaderProps) => (
{children}
); export default ChatbotHeader;