import React from 'react'; import { View, Text } from 'react-native'; import { AppButton } from './AppButton'; interface EmptyStateProps { title: string; description?: string; actionLabel?: string; onAction?: () => void; icon?: string; } export const EmptyState: React.FC = ({ title, description, actionLabel, onAction, icon = '📭', }) => { return ( {icon} {title} {description && ( {description} )} {actionLabel && onAction && ( )} ); };