import { FunctionComponent, useState } from 'react'; import ChatbotToggle from '@patternfly/chatbot/dist/dynamic/ChatbotToggle'; export const SquareChatbotToggle: FunctionComponent = () => { const [chatbotVisible, setChatbotVisible] = useState(false); return ( setChatbotVisible(!chatbotVisible)} isRound={false} /> ); };