fix: perbaiki warna ikon tombol send agar terlihat pada tema dark

This commit is contained in:
2026-06-10 15:22:30 +08:00
parent 047875ab70
commit 0ff348891d

View File

@@ -177,8 +177,8 @@ export default function DiscussionCommentInput({
}}
>
{loading
? <ActivityIndicator size={18} color={sendDisabled ? colors.dimmed : '#fff'} />
: <Ionicons name="send" size={18} color={sendDisabled ? colors.dimmed : '#fff'} />
? <ActivityIndicator size={18} color={sendDisabled ? colors.dimmed : colors.background} />
: <Ionicons name="send" size={18} color={sendDisabled ? colors.dimmed : colors.background} />
}
</Pressable>
</View>