import { Show } from 'solid-js'; import { JSX } from 'solid-js/jsx-runtime'; import { DeleteIcon, SendIcon, ModernSendIcon } from '../icons'; type SendButtonProps = { sendButtonColor?: string; isDisabled?: boolean; isLoading?: boolean; disableIcon?: boolean; } & JSX.ButtonHTMLAttributes; export const SendButton = (props: SendButtonProps) => { return ( ); }; export const DeleteButton = (props: SendButtonProps) => { // Check if is present in the DOM const isFullChatbot = document.querySelector('flowise-fullchatbot') !== null; const paddingClass = isFullChatbot ? 'px-4' : 'px-12'; return ( ); }; export const Spinner = (props: JSX.SvgSVGAttributes) => ( );