import { Modal } from 'react-native'; import { FlexView, Text, type IconType, IconBox, useTheme, Button } from '@reown/appkit-ui-react-native'; import styles from './styles'; interface InformationModalProps { iconName: IconType; title?: string; description?: string; visible: boolean; onClose: () => void; } export function InformationModal({ iconName, title, description, visible, onClose }: InformationModalProps) { const Theme = useTheme(); return ( {!!title && ( {title} )} {!!description && ( {description} )} ); }