// packages/ui-native/src/components/StatusBar.tsx // RN StatusBar — bottom status strip with LED + model label import { View, type ViewStyle, type StyleProp } from 'react-native' import { d3roNativePalette, d3roNativeFonts } from '../theme' import { Led } from './Led' import { PhosphorText } from './PhosphorText' export interface AppStatusBarProps { model?: string label?: string style?: StyleProp } export function AppStatusBar({ model = 'CLOUD CLAUDE', label = 'PRECISION DATA LINK', style }: AppStatusBarProps): React.ReactElement { const containerStyle: ViewStyle = { flexDirection: 'row', alignItems: 'center', justifyContent: 'center', paddingVertical: 8, paddingHorizontal: 16, gap: 8, opacity: 0.5 } return ( {model} {label} ) }