import { View, Pressable } from 'react-native'; import { Ionicons } from '@expo/vector-icons'; import { Text } from './Text'; import { useTheme } from '~/contexts/ThemeContext'; type ErrorBannerProps = { message: string; onDismiss: () => void; }; export function ErrorBanner({ message, onDismiss }: ErrorBannerProps) { const { theme } = useTheme(); return ( {message} ); }