import { FC } from "react" interface ChatbotUISVGProps { theme: "dark" | "light" scale?: number } export const ChatbotUISVG: FC = ({ theme, scale = 1 }) => { return ( ) }