import { Pressable, View } from 'react-native' import { SquareChevronRight } from 'lucide-react-native' import { colors } from '../theme/mobile-theme' import { styles } from './mobile-session-styles' type Props = { disabled: boolean onPress: () => void } export function QuickCommandsTabButton({ disabled, onPress }: Props) { return ( <> [ styles.newTerminalButton, pressed && styles.newTerminalButtonPressed, disabled && styles.newTerminalButtonDisabled ]} disabled={disabled} onPress={onPress} accessibilityLabel="Quick commands" > ) }