/** * InlineReasoningButton Component * * Small chevron button that toggles reasoning visibility. * Designed to appear inline next to message labels (e.g., "(co said) [>]"). * * Replaces the standalone ReasoningToggle component with a more compact, * integrated design. */ import React from 'react'; import { TouchableOpacity, StyleSheet } from 'react-native'; import { Ionicons } from '@expo/vector-icons'; interface InlineReasoningButtonProps { isExpanded: boolean; onToggle: () => void; isDark: boolean; } export const InlineReasoningButton: React.FC = ({ isExpanded, onToggle, isDark, }) => { return ( ); }; const styles = StyleSheet.create({ button: { marginLeft: 6, padding: 2, }, }); export default InlineReasoningButton;