managarten/apps/picture/apps/mobile/components/ErrorBanner.tsx
Wuesteon d36b321d9d style: auto-format codebase with Prettier
Applied formatting to 1487+ files using pnpm format:write
  - TypeScript/JavaScript files
  - Svelte components
  - Astro pages
  - JSON configs
  - Markdown docs

  13 files still need manual review (Astro JSX comments)
2025-11-27 18:33:16 +01:00

40 lines
1 KiB
TypeScript

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 (
<View
style={{
position: 'absolute',
top: 60,
left: 16,
right: 16,
backgroundColor: theme.colors.error || '#ef4444',
borderRadius: 12,
padding: 16,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
zIndex: 1000,
...theme.shadows.lg,
}}
>
<View style={{ flex: 1, flexDirection: 'row', alignItems: 'center' }}>
<Ionicons name="alert-circle" size={20} color="white" style={{ marginRight: 12 }} />
<Text style={{ color: 'white', flex: 1 }}>{message}</Text>
</View>
<Pressable onPress={onDismiss} hitSlop={8}>
<Ionicons name="close" size={20} color="white" />
</Pressable>
</View>
);
}