import { View } from 'react-native'; import { Icon } from '../../atoms/Icon'; import { Text } from '../../atoms/Text'; import { cn } from '../../lib/cn'; import type { EmptyStateProps } from './EmptyState.types'; export function EmptyState({ icon = 'info', title, description, action, className, }: EmptyStateProps) { return ( {title} {description ? ( {description} ) : null} {action ? {action} : null} ); }