feat(chat): toggle send button icon by input content

This commit is contained in:
2026-06-22 18:58:57 +08:00
parent 031bad376f
commit 9a65f2f9ad
2 changed files with 13 additions and 5 deletions
@@ -70,6 +70,7 @@ export function ChatInputBar({ disabled = false }: ChatInputBarProps) {
/>
<ChatSendButton
disabled={!hasContent || disabled}
hasContent={hasContent}
onClick={handleSend}
/>
</div>