import { View } from 'react-native'; import { Text } from '~/components/Text'; type EmptyStateProps = { icon: string; title: string; description: string; padding?: number; }; export function EmptyState({ icon, title, description, padding = 32 }: EmptyStateProps) { return ( {icon} {title} {description} ); }