// ============================================================================ // Chatbot Footer // ============================================================================ // Global footer component // Supports: // - Message bar // - Footnote // - Footnote popover import type { HTMLProps, FunctionComponent } from 'react'; import { Divider } from '@patternfly/react-core'; export interface ChatbotFooterProps extends HTMLProps { /** Children for the footer - supports MessageBar and FootNote components*/ children?: React.ReactNode; /** Custom classname for the footer component */ className?: string; /** Sets footer to compact styling. */ isCompact?: boolean; /** Sets background color to primary */ isPrimary?: boolean; } export const ChatbotFooter: FunctionComponent = ({ children, className, isCompact, isPrimary, ...props }: ChatbotFooterProps) => (
{children}
); export default ChatbotFooter;